home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000086_news@columbia.edu _Fri Apr 18 10:22:37 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA15727
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 18 Apr 1997 10:22:36 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA00561
  7.     for kermit.misc@watsun; Fri, 18 Apr 1997 10:22:35 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Is it possible to... with kermit
  12. Date: 18 Apr 1997 14:22:29 GMT
  13. Organization: Columbia University
  14. Lines: 42
  15. Message-ID: <5j8035$2bk$1@apakabar.cc.columbia.edu>
  16. References: <3353D8F8.2328@WolfeNet.Com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6902
  19.  
  20. In article <3353D8F8.2328@WolfeNet.Com>, Baus  <Baus@WolfeNet.Com> wrote:
  21. : Looking to see if something can be done with Kermit.
  22. : I have an application that uses kermit 3.14 for remote communications.  I 
  23. : would like to find out if it is possible, I assume through a Windows 
  24. : version of Kermit, to have multiple remote users download at the same 
  25. : time to the same PC.
  26. :
  27. In theory it is possible on TCP/IP connections, as many as the PC can handle
  28. at once.  On serial connections, one simultaneous session per port.
  29.  
  30. : The ideal situation would be for users to call one 
  31. : number and that number forward to other lines if busy, without the user 
  32. : knowing, and then have a seperate copy of the download application that 
  33. : calls Kermit for each phone line.
  34. :
  35. Hunt groups are a service of your telephone company, not of your PC or
  36. Kermit.  This is, of course, how modem pools work.
  37.  
  38. : Would like the application to be in Visual Basic.  I am assuming I could
  39. : keep adding phone lines and copies of the application as long as I add RAM?
  40. The standard method of embedding Kermit protocol in another application is to
  41. license the appropriate Kermit software from the Kermit Project and invoke it
  42. with command-line arguments, usually indicating the name of a command (script)
  43. file to be executed.  Kermit itself handles all the communication functions,
  44. and returns a code indicating success or failure.  Of course it can also keep
  45. various sorts of logs, etc.
  46.  
  47. You didn't say which version of Windows you have.  If it is Windows 95 or NT,
  48. then the Kermit program for that platform includes a "host mode" that allows
  49. users to dial or Telnet in to your computer, log in with a password, and see a
  50. simple menu that gives them file transfer and management access to a
  51. restricted set of directories.  You can read about it at:
  52.  
  53.   http://www.columbia.edu/kermit/k95host.html
  54.  
  55. And the Kermit project in general at:
  56.  
  57.   http://www.columbia.edu/kermit/
  58.  
  59. - Frank